-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added font-awesome-based icons #554
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #554 +/- ##
==========================================
- Coverage 95.95% 95.92% -0.04%
==========================================
Files 59 60 +1
Lines 3340 3358 +18
Branches 638 639 +1
==========================================
+ Hits 3205 3221 +16
- Misses 96 98 +2
Partials 39 39 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, sorry for the delay in responding to this! Just a couple changes and I'll be happy to merge this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this isn't currently used by any other library features, could you move all the Font Awesome-related code from constants.py
to the new module font_awesome_icons.py
?
} | ||
|
||
assert set(ICONIC_TAXA.keys()) == set(ICONIC_EMOJI.keys()) | ||
assert set(ICONIC_TAXA.keys()) == set(ICONIC_FONT_AWESOME.keys()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you remove these asserts? Those should generally only be used in unit tests.
As per title, adds suppory for font-awesome-based icons matched with the emojis to the best of my abilities. This is simply added as additional consts dictionaries.
Closes #553